* {
	margin: 0;
	padding: 0;
	outline: none;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
a {text-decoration: none; }
body {
    background: #fdeada;
    
}
div.students {display: inline-block;
    vertical-align: top;
}
div.wrapper {
  margin: 20px auto;
  width: 350px;
}
nav.vertical {
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,.15);
  overflow: hidden;
  text-align: center;
}

  nav.vertical > ul {
    list-style-type: none;
  }

    nav.vertical > ul > li {
      display: block;
	  
    }
	nav.vertical > ul > li > a {
	background-color: #fdeada;
	border-bottom: 1px solid rgba(255,255,255,.1);
	box-shadow: inset 0 1px 1px #d7e4bd, 0 1px 1px #d7e4bd;
	color: #4f6228;
	display: block;
	font-size: .60rem;
	font-weight: 400;
	height: 50px;
	letter-spacing: .2rem;
	line-height: 50px;
	text-transform: uppercase;
	transition: all .1s ease;
	text-decoration: none;
}

	nav.vertical > ul > li > a:hover {
		background-color: #d7e4bd;
		cursor: pointer;
	}
	nav.horizontal > ul > li > a:hover {
		background-color: #d7e4bd;
		cursor: pointer;
	}
	.active {
    background: #83c9ff; 
}

